All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface com.apple.alpha.app.ControlSubclassNotifications

public interface ControlSubclassNotifications
This interface wraps the Objective-C category defining delegate methods of the NSControl class. The methods in this interface are notifications methods. This interface is exposed in Java for documentation purposes, since one is not required to implement this interface. Your class may implement one or more of these methods, as needed. Only those methods implemented will be called.


Method Index

 o controlTextDidBeginEditing(Notification)
A wrapper for the - controlTextDidBeginEditing: Objective-C instance method associated to notifications sent by the Control class (known as the NSControl Objective-C class).
 o controlTextDidChange(Notification)
A wrapper for the - controlTextDidChange: Objective-C instance method associated to notifications sent by the Control class (known as the NSControl Objective-C class).
 o controlTextDidEndEditing(Notification)
A wrapper for the - controlTextDidEndEditing: Objective-C instance method associated to notifications sent by the Control class (known as the NSControl Objective-C class).

Methods

 o controlTextDidBeginEditing
 public abstract void controlTextDidBeginEditing(Notification obj)
A wrapper for the - controlTextDidBeginEditing: Objective-C instance method associated to notifications sent by the Control class (known as the NSControl Objective-C class).

 o controlTextDidEndEditing
 public abstract void controlTextDidEndEditing(Notification obj)
A wrapper for the - controlTextDidEndEditing: Objective-C instance method associated to notifications sent by the Control class (known as the NSControl Objective-C class).

 o controlTextDidChange
 public abstract void controlTextDidChange(Notification obj)
A wrapper for the - controlTextDidChange: Objective-C instance method associated to notifications sent by the Control class (known as the NSControl Objective-C class).


All Packages  Class Hierarchy  This Package  Previous  Next  Index